home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Cream of the Crop 21
/
Cream of the Crop 21 (Terry Blount) (October 1996).iso
/
bbs
/
pad311.zip
/
COUNTCHA.MH
< prev
next >
Wrap
Text File
|
1996-08-21
|
409b
|
17 lines
#ifndef __COUNTCHA_MH
#define __COUNTCHA_MH
// Counts the number of occourances of a character within a string. The number
// of occourances is returned.
int countChar (string: theString, char: theChar) {
int: idx, count;
count := 0;
for (idx := 1; idx <= strlen (theString); idx := idx + 1) {
if (theString [idx] = theChar) count := count + 1;
};
return count;
}
#endif